HTMLify
index.html
Views: 17 | Author: cody
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="app.js" defer></script>
<title>Floating Social Media Icons</title>
</head>
<body>
<div class="container">
<span class="close-btn">
<i class="fa-solid fa-xmark"></i>
</span>
<div class="media-icons">
<a href="#" style="background: #e60023">
<i class="fa-brands fa-pinterest"></i>
<span class="tooltip" style="color: #e60023">Pinterest</span>
</a>
<a href="#" style="background: #0e76a8">
<i class="fa-brands fa-linkedin"></i>
<span class="tooltip" style="color: #0e76a8">Linkedin</span>
</a>
<a href="#" style="background: #ff0000">
<i class="fa-brands fa-youtube"></i>
<span class="tooltip" style="color: #ff0000">YouTube</span>
</a>
<a href="#" style="background: #ea4689">
<i class="fa-brands fa-dribbble"></i>
<span class="tooltip" style="color: #ea4689">Dribbble</span>
</a>
<a href="#" style="background: #8e36ff">
<i class="fa-brands fa-github"></i>
<span class="tooltip" style="color: #8e36ff">Github</span>
</a>
<a href="#" style="background: #4267b2">
<i class="fa-brands fa-facebook-f"></i>
<span class="tooltip" style="color: #4267b2">Facebook</span>
</a>
<a href="#" style="background: #1da1f2">
<i class="fa-brands fa-twitter"></i>
<span class="tooltip" style="color: #1da1f2">Twitter</span>
</a>
</div>
</div>
</body>
</html>